home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / tools / developer-tools / aros / source / exec / interrupts / src / cause.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-16  |  834 b   |  49 lines

  1. /*
  2.     $Id: cause.c 1.1 1995/12/17 21:45:42 digulla Exp digulla $
  3.     $Log: cause.c $
  4.  * Revision 1.1  1995/12/17  21:45:42  digulla
  5.  * Initial revision
  6.  *
  7.     Desc:
  8.     Lang: english
  9. */
  10. #include "exec_intern.h"
  11.  
  12. /*****************************************************************************
  13.  
  14.     NAME */
  15.     #include <clib/exec_protos.h>
  16.  
  17.     __AROS_LH1(void, Cause,
  18.  
  19. /*  SYNOPSIS */
  20.     __AROS_LA(struct Interrupt *, interrupt, A1),
  21.  
  22. /*  LOCATION */
  23.     struct ExecBase *, SysBase, 30, Exec)
  24.  
  25. /*  FUNCTION
  26.  
  27.     INPUTS
  28.  
  29.     RESULT
  30.  
  31.     NOTES
  32.  
  33.     EXAMPLE
  34.  
  35.     BUGS
  36.  
  37.     SEE ALSO
  38.  
  39.     INTERNALS
  40.  
  41.     HISTORY
  42.     29-10-95    digulla automatically created from
  43.                 exec_lib.fd and clib/exec_protos.h
  44.  
  45. *****************************************************************************/
  46. {
  47.     __AROS_BASE_EXT_DECL(struct ExecBase *,SysBase)
  48. } /* Cause */
  49.